body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background: #0d0d0f;
    color: #ffffff;
}
.top-row {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 40px auto;
}

.section-title {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
}

.comparison-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

.compare-box {
    flex: 1;
    min-width: 290px;
    background: #141418;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #25252a;
}

.compare-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

.vs-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    font-weight: 800;
    width: 100%;
    margin: 25px 0;
    color: #00a2ff;
}

.plus-title {
    color: #4aff78;
    font-weight: 600;
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 20px;
}

.minus-title {
    color: #ff5050;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 20px;
}

.compare-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.compare-list li {
    margin-bottom: 6px;
    font-size: 16px;
    opacity: 0.9;
}

.winner-box {
    margin-top: 40px;
    text-align: center;
}

.winner-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.winner-reason {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 25px;
}

.btn-try {
    display: inline-block;
    background: #007bff;
    padding: 14px 30px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: 600;
    transition: 0.15s ease;
}

.btn-try:hover {
    opacity: 0.85;
}
.back {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);   /* кнопка по вертикали выравнивается по центру блока */
    font-size: 16px;
    padding: 10px 24px;
    background: linear-gradient(135deg, #3a7bff, #295bff);
    border-radius: 12px;
    box-shadow: 0 0 22px rgba(50, 100, 255, 0.45);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s ease;
    white-space: nowrap; /* чтобы текст не ломался */
}

/* Контейнер для кнопки и заголовка */
.title-row {
    display: flex;
    align-items: center;
    justify-content: center; /* заголовок по центру */
    gap: 60px; /* расстояние между кнопкой и центром */
    margin-bottom: 30px;
    position: relative;
}

.back-btn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px 24px;
    font-size: 16px;
    background: linear-gradient(135deg, #3a7bff, #295bff);
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 22px rgba(50, 100, 255, 0.45);
    transition: 0.25s;
    white-space: nowrap;
}

.back-btn:hover {
    transform: translateY(-50%) translateY(-2px);
    box-shadow: 0 0 30px rgba(60, 120, 255, 0.6);
}

/* Адаптация под телефон */
@media (max-width: 600px) {
    .title-row {
        gap: 40px; /* уменьшаем отступ для маленького экрана */
    }

    .back-btn {
        padding: 8px 16px;
        font-size: 14px;
        left: 5px;
    }

    .section-title {
        font-size: 24px;
    }
}
